home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{167C9DC1-D0B3-11D2-9E7C-0060B0A4C27E}#15.0#0"; "m_mdiChild32.ocx"
- Begin VB.Form MDIChild1Form
- Caption = "MDIChild in DLL"
- ClientHeight = 4860
- ClientLeft = 165
- ClientTop = 735
- ClientWidth = 7740
- LinkTopic = "Form1"
- ScaleHeight = 4860
- ScaleWidth = 7740
- StartUpPosition = 3 'Windows Default
- Begin VB.TextBox Text1
- BackColor = &H80000001&
- Height = 3165
- Left = 30
- TabIndex = 0
- Top = 60
- Width = 3555
- End
- Begin M_mdiChild32.mdiChildDll mdiChildDll
- Left = 4410
- Top = 1260
- _ExtentX = 503
- _ExtentY = 476
- Visible = -1 'True
- UserSpecifiedID = ""
- Enabled = -1 'True
- End
- Begin VB.Menu ole
- Caption = "ole"
- Begin VB.Menu per
- Caption = "per"
- End
- End
- Attribute VB_Name = "MDIChild1Form"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- '----------------------------------------------------------------------
- 'MDIChildTest
- 'Copyright (c) Millennium Software AS
- 'Redistribution of Code Prohibited
- 'Finished: 02.03.99 17:59:45
- 'Author: Morten Ladstein (morten@millennium.no)
- 'Company: Millennium Software AS
- 'Web: http://www.millennium.no
- 'Description:
- 'Comments:
- '----------------------------------------------------------------------
- Option Explicit
- Private Sub Form_Resize()
- Text1.Move 30, 60, Abs(Width - 180), Abs(Height - 760)
- End Sub
- Private Sub per_Click()
- MsgBox "per2"
- End Sub
-